home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / FAX_SSTV / VESTER_M / TG.BAT < prev    next >
DOS Batch File  |  1995-11-16  |  1KB  |  21 lines

  1. REM TG.BAT allows GIF files in chosen directory to be transmitted in any
  2. REM SSTV format. Only GIF's 640x480 or smaller work with the enclosed
  3. REM Alchemy version (read ALCHEMY.DOC).
  4. gwbasic pickfile
  5. REM Use PICKFILE.BAS to select a GIF file in the chosen directory,and
  6. REM exit a copy of it to the current directory as a.gif.
  7. alchemy -t0 -24 -o -X640 -Y480 a.gif a.tif
  8. REM Convert a.gif to a zero compressed tif (-t0) file with 24 color bits and
  9. REM 640x480 pixel size and name it a.tif. Overwrite (-o) any existing a.tif.
  10. del a.gif    REM Delete a.gif as no longer needed.
  11. gwbasic alchconv
  12. REM ALCHCONV.BAS is a modified TIFCONV which accepts a.tif in 640x480 form
  13. REM and outputs a TV file, a.p, and the chosen mode number to ALCHVT.BAS.
  14. del a.tif    REM Delete a.tif as no longer needed.
  15. gwbasic alchvt
  16. REM ALCHVT.BAS is a modified version of VT.BAS which accepts a.p and the
  17. REM mode number and sets up to view and transmit. We don't delete a.p so
  18. REM you can copy it later as a named TV file; ie, so TG can be used as a
  19. REM program for converting from GIF to TV formats if desired.
  20. 
  21.